home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / medhu_va.swf / scripts / DefineSprite_249 / frame_12 / DoAction.as
Text File  |  2010-11-09  |  550b  |  30 lines

  1. stop();
  2. cnt = 0;
  3. v3.onPress = function()
  4. {
  5.    _parent.ins11._visible = false;
  6.    _parent.ins12._visible = false;
  7.    this.startDrag();
  8.    if(cnt == 1)
  9.    {
  10.       v3.gotoAndStop(3);
  11.    }
  12. };
  13. v3.onRelease = function()
  14. {
  15.    if(plates.plate.hitTest(v3) || _parent.tava.hitTest(v3))
  16.    {
  17.       _parent.ins12._visible = true;
  18.       stopDrag();
  19.       this._x = v3._x;
  20.       this._y = v3._y;
  21.       cnt++;
  22.    }
  23.    if(tava.hitTest(v3))
  24.    {
  25.       v3._visible = false;
  26.       dupv3._visible = true;
  27.       dupv3.gotoAndPlay(2);
  28.    }
  29. };
  30.